copyInto

Copies an pixel image range into an image

Auto converts the color to the destination one.

  1. Image copyInto(IRRange input, Image destination)
    @nogc @safe
    Image
    copyInto
    (
    IRRange
    Image
    )
    (
    ref IRRange input
    ,
    ref Image destination
    )
    if (
    isPixelRange!IRRange &&
    isImage!Image
    )
  2. Image copyInto(IRRange input, Image destination)

Parameters

input IRRange

The pixel input range

destination Image

The output image

Return Value

Type: Image

The destination image for composibility reasons

Meta